How do I send e-mail from an ASP.NET application?
2303
11-Dec-2010
Amit Singh
11-Dec-2010For Example:
MailMessage message = new MailMessage ();
message.From = aa@abc.com;
message.To = aa1@xyz.com;
message.Subject = "Hi, this is the new message";
message.Body = "hi,this is the new message and one attachements";
SmtpMail.SmtpServer = "localhost";
SmtpMail.Send (message);
Note:
MailMessage and SmtpMail are classes defined in the .NET Framework Class Library's System.Web.Mail namespace. Due to a security change made to ASP.NET just before it shipped, you need to set SmtpMail's SmtpServer property to "localhost" even though "localhost" is the default. In addition, you must use the IIS configuration applet to enable localhost (127.0.0.1) to relay messages through the local SMTP service.